home *** CD-ROM | disk | FTP | other *** search
/ Programming Sound Cards / Programming Sound Cards.iso / sound_81 / sample.zip / SXSAMPLE.FRM < prev    next >
Text File  |  1993-09-01  |  3KB  |  100 lines

  1. VERSION 2.00
  2. Begin Form Form1 
  3.    BorderStyle     =   3  'Fixed Double
  4.    Caption         =   "SoundX Sample"
  5.    ClientHeight    =   2370
  6.    ClientLeft      =   1935
  7.    ClientTop       =   2760
  8.    ClientWidth     =   4230
  9.    Height          =   2775
  10.    Left            =   1875
  11.    LinkTopic       =   "Form1"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   2370
  15.    ScaleWidth      =   4230
  16.    Top             =   2415
  17.    Width           =   4350
  18.    Begin TextBox Word 
  19.       Height          =   285
  20.       Left            =   240
  21.       TabIndex        =   0
  22.       Top             =   480
  23.       Width           =   3735
  24.    End
  25.    Begin SoundX SoundX1 
  26.       Left            =   3720
  27.       Top             =   0
  28.    End
  29.    Begin Label ExtSoundex 
  30.       Alignment       =   1  'Right Justify
  31.       Height          =   255
  32.       Left            =   2760
  33.       TabIndex        =   7
  34.       Top             =   1800
  35.       Width           =   1215
  36.    End
  37.    Begin Label Soundex 
  38.       Alignment       =   1  'Right Justify
  39.       Height          =   255
  40.       Left            =   2160
  41.       TabIndex        =   6
  42.       Top             =   1440
  43.       Width           =   1815
  44.    End
  45.    Begin Label Metaphone 
  46.       Alignment       =   1  'Right Justify
  47.       Height          =   255
  48.       Left            =   2160
  49.       TabIndex        =   5
  50.       Top             =   1080
  51.       Width           =   1815
  52.    End
  53.    Begin Label Label4 
  54.       Caption         =   "Extended Soundex Output:"
  55.       Height          =   255
  56.       Left            =   240
  57.       TabIndex        =   4
  58.       Top             =   1800
  59.       Width           =   2415
  60.    End
  61.    Begin Label Label3 
  62.       Caption         =   "Soundex Output"
  63.       Height          =   255
  64.       Left            =   240
  65.       TabIndex        =   3
  66.       Top             =   1440
  67.       Width           =   1935
  68.    End
  69.    Begin Label Label2 
  70.       Caption         =   "Metaphone Output:"
  71.       Height          =   255
  72.       Left            =   240
  73.       TabIndex        =   2
  74.       Top             =   1080
  75.       Width           =   1695
  76.    End
  77.    Begin Label Label1 
  78.       Caption         =   "Input Word:"
  79.       Height          =   255
  80.       Left            =   240
  81.       TabIndex        =   1
  82.       Top             =   240
  83.       Width           =   1935
  84.    End
  85. End
  86. Option Explicit
  87.  
  88. Sub Form_Unload (Cancel As Integer)
  89.     End
  90. End Sub
  91.  
  92. Sub Word_Change ()
  93.     SoundX1.Word = Word
  94.  
  95.     Metaphone = SoundX1.Metaphone
  96.     Soundex = SoundX1.Soundex
  97.     ExtSoundex = SoundX1.ExtSoundex
  98. End Sub
  99.  
  100.